home *** CD-ROM | disk | FTP | other *** search
/ Meeting Pearls 1 / Meeting Pearls Vol 1 (1994).iso / installed_progs / linux / kernel / kern-0.06.readme < prev    next >
Encoding:
Text File  |  1994-06-14  |  2.7 KB  |  72 lines

  1. The file "kern-0.06.tar.gz" contains the executable for the linux/68k
  2. kernel version 0.06.
  3.  
  4. The new features of this kernel over 0.05pl3 include:
  5.  
  6. *) Support for the 68040, including the 68040 floating point softare
  7.    package.  The 68040 support has not been tested yet.
  8.  
  9. *) Support for multiple discontiguous memory chunks.
  10.  
  11. *) linux/386 patches up to 0.99pl13 applied.
  12.  
  13. Please let me know if this kernel runs on your machine, and the type
  14. of machine you have.  The compressed filesystem in ../filesys can be
  15. used as a ramdisk to boot with the kernel.
  16.  
  17. To boot the kernel on an Amiga, use the supplied "bootstrap" command.
  18. Note that the "bootstrap" program has changed from the previous
  19. version released.  The new version *must* be used with the new kernel.
  20.  
  21. To boot with the ramdisk image, uncompress the filesystem image and
  22. type:
  23.  
  24.   bootstrap -r filesys
  25.  
  26. To boot from a floppy image, uncompress the filesystem image and copy
  27. it to a floppy (possibly using the "flat:" handler).  Then type:
  28.  
  29.   bootstrap
  30.  
  31. If you somehow have a bootable linux/68k minix filesystem on a SCSI
  32. hard disk partition, you can boot from the partition by supplying the
  33. device number to the bootstrap program:
  34.  
  35.    bootstrap -b [number]
  36.  
  37. The major number for SCSI disks is "0x08", and the minor number dpends
  38. on the disk and partition. linux/68k searches for SCSI disks from
  39. target 0 to target 7, and for Logical Units 0 through 7 on each
  40. target.  The minor number can be calculated by (disk_number)*16 +
  41. partition_number.  The first disk found is disk 0.  Partition 0 is the
  42. whole disk.  Partition 1 is the first partition found in the
  43. RigidDiskBlock partition table on the Amiga hard disk.  Thus 0x0801 is
  44. the first partition on the first disk found.  0x0818 is the second
  45. partition on the second hard disk found.
  46.  
  47. I have two SCSI hard disks.  The first is at target 5, LUN 0 and the
  48. second at target 6, LUN 0.  The first has three partitions, used for
  49. Linux and the second has 4 partitions used for AmigaDOS.
  50.  
  51. Thus I have:
  52.  
  53.    devnum         linux device name
  54.    ------         ------------------------------------
  55.    0x0800         sda  (the entire disk at target 5)
  56.    0x0801         sda1 (1st partition on disk at target 5)
  57.    0x0802         sda2 (2nd partition on disk at target 5)
  58.    0x0803         sda3 (3rd partition on disk at target 5)
  59.    0x0810         sdb  (the entire disk at target 6)
  60.    0x0811         sdb1 (1st partition on disk at target 6)
  61.    0x0812         sdb2 (2nd partition on disk at target 6)
  62.    0x0813         sdb3 (3rd partition on disk at target 6)
  63.    0x0814         sdb4 (4th partition on disk at target 6)
  64.  
  65. My Linux root partition is on the 2nd partition of my first drive, so
  66. I boot with:
  67.  
  68.   bootstrap -b 0x0802
  69.  
  70.  
  71. Hamish.Macdonald@bnr.ca
  72.